From 1415d467fef5adf3dc807ae2ad612bb9f8c9c608 Mon Sep 17 00:00:00 2001 From: "kaf24@scramble.cl.cam.ac.uk" Date: Wed, 3 Dec 2003 10:22:22 +0000 Subject: [PATCH] bitkeeper revision 1.642 (3fcdb95euBzkxchkI3J1_rqWh5s6gw) net_headers.h: Fix Arp header struct. --- xen/include/xeno/net_headers.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/include/xeno/net_headers.h b/xen/include/xeno/net_headers.h index a90b201227..8f0a2229ea 100644 --- a/xen/include/xeno/net_headers.h +++ b/xen/include/xeno/net_headers.h @@ -119,9 +119,9 @@ struct arphdr /* This next bit is variable sized, and as coded only allows ETH-IPv4 */ __u8 ar_sha[ETH_ALEN]; /* sender hardware address */ - __u32 ar_sip; /* sender IP address */ + __u8 ar_sip[4]; /* sender IP address */ __u8 ar_tha[ETH_ALEN]; /* target hardware address */ - __u32 ar_tip; /* target IP address */ + __u8 ar_tip[4]; /* target IP address */ }; -- 2.30.2